1bashThis demonstrates sourcing a file to execute its contents in Bash.# Create a file with some commands echo 'echo "Hello, World!"' > my_script.sh # Source the file source my_script.sh # or . my_script.shbash internalscript executionsource commandsourcing a file